home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form frmHelp
- AutoRedraw = -1 'True
- BorderStyle = 3 'Fixed Dialog
- Caption = "Help Contents"
- ClientHeight = 3120
- ClientLeft = 45
- ClientTop = 330
- ClientWidth = 5460
- BeginProperty Font
- Name = "Tahoma"
- Size = 8.25
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Icon = "help.frx":0000
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 3120
- ScaleWidth = 5460
- ShowInTaskbar = 0 'False
- StartUpPosition = 1 'CenterOwner
- WhatsThisButton = -1 'True
- WhatsThisHelp = -1 'True
- Begin VB.CommandButton Command1
- Cancel = -1 'True
- Caption = "&Close"
- Default = -1 'True
- Height = 420
- Left = 4455
- TabIndex = 1
- Top = 2655
- Width = 960
- End
- Begin VB.TextBox txHelp
- BackColor = &H80000004&
- Height = 2535
- Left = 45
- Locked = -1 'True
- MultiLine = -1 'True
- ScrollBars = 2 'Vertical
- TabIndex = 0
- Text = "help.frx":030A
- Top = 45
- Width = 5370
- End
- Begin VB.Image Image1
- Height = 480
- Left = 45
- Picture = "help.frx":0ABE
- Top = 2655
- Width = 480
- End
- Attribute VB_Name = "frmHelp"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Option Explicit
- Private Declare Function HideCaret Lib "user32" (ByVal hwnd As Long) As Long
- Private Sub Command1_Click()
- Unload Me
- End Sub
- Private Sub Form_Load()
- HideCaret txHelp.hwnd
- End Sub
-